@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    overflow: hidden;
}


.logo {
    height: 45px;
}

.middle {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.home {
    background-image: url('https://res.cloudinary.com/dgqvca4cj/image/upload/v1685436003/Home_zacb6y.webp');
    height: 100vh;
    width: 100vw;
    display: block;
    background-size: cover;
}

.homemobile {
    display: none;
}

.overlay {
    width: 100%;
    height: 30px;
    background-color: rgba(0, 0, 0, 10);
    /* Adjust the alpha value to control the darkness */
}


nav {
    width: 100%;
    background-color: transparent;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

nav li {
    margin: 0 8.1px;
    color: white;
    font-size: 9px;
    font-family: 'Gibson ', sans-serif;
    letter-spacing: 3.6px;
}

nav a {
    text-decoration: none;
    color: white;
}

nav a:hover {
    color: red;
}

.active {
    color: red;
    font-weight: bold;
}



.fonts {
    font-size: 11.7px;
    font-family: 'Gibson', sans-serif;
    letter-spacing: 5.4px;
    line-height: 27px;
    color: white;
    text-align: center;
    margin-top: 9px;
    margin-bottom: 9px;
}


.ads {
    color: red;
    font-weight: bold;
}

.centertext {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 8.1vh;
}

.whitelayer {
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    /*background-color: rgba(255, 255, 255, 20);*/
    /* Semi-transparent white */
}


.hometext {
    font-size: 36px;
    margin-top: 18px;
    font-weight: normal;
}

.bottomright {
    position: absolute;
    bottom: 8px;
    right: 16px;
    display: block;
}

.bottomright2 {
    display: none;
}

@media screen and (min-width:320px) and (max-width:480px) {

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        overflow: hidden;
        text-align: center;

    }

    .logo {

        height: 45px;
        margin-top: 0.38px;
    }

    .home {
        background-image: url('');
        height: 100vh;
        width: 100vw;
        display: block;
        background-size: cover;
    }


    .homemobile {
        height: 100vh;
        width: 100vw;
        background-size: contain;
        display: block;
    }

    .middle {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }


    .overlay {

        width: 100%;
        height: 3vh;
        background-color: rgba(0, 0, 0, 0.5);
        /* Adjust the alpha value to control the darkness */
    }


    nav {
        width: 100%;
        background-color: transparent;
        padding: 5px;
    }

    nav ul {
        list-style-type: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    nav li {
        margin: 0 5px;
        color: white;
        font-size: 1vh;
        font-family: 'Gibson ', sans-serif;
        letter-spacing: 1.5px;
    }

    .centertext {
        display: none;
    }


    .fonts {
        display: none;
    }

    .bottomright {
        display: none;
    }

    .bottomright2 {
        position: absolute;
        bottom: 8px;
        right: 34vw;
        left: 36vw;
        display: block;
    }

}